home *** CD-ROM | disk | FTP | other *** search
/ Tech Arsenal 1 / Tech Arsenal (Arsenal Computer).ISO / tek-03 / qbasicpg.zip / LOWER.BAS < prev    next >
BASIC Source File  |  1989-08-31  |  242b  |  15 lines

  1. ' LOWER.BAS
  2. ' This program demonstrates the UCASE$ and LCASE$ functions.
  3.  
  4. CLS
  5.  
  6. character$ = "Sherlock Holmes"
  7. PRINT character$
  8.  
  9. character$ = UCASE$(character$)
  10. PRINT character$
  11.  
  12. character$ = LCASE$(character$)
  13. PRINT character$
  14.  
  15.